home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / tpega.zip / GPWTROW.P < prev    next >
Text File  |  1986-02-01  |  1KB  |  18 lines

  1. {                                                                              }
  2. {       EGA Graphic Primitive for Turbo Pascal 3.01A, Version 01FEB86.         }
  3. {       (C) 1986 by Kent Cedola, 2015 Meadow Lake Ct., Norfolk, VA, 23518      }
  4. {                                                                              }
  5. {       Description: Write a array of colors across the screen.  The current   }
  6. {       merge setting is used to control the combining of bits.                }
  7. {                                                                              }
  8.  
  9. procedure GPWTROW(var BUF; N: Integer);
  10. begin
  11.   inline
  12.     ($1E/$A1/GDCUR_Y/$D1/$E0/$D1/$E0/$03/$06/GDCUR_Y/$05/$A000/$8E/$C0/$8B/$3E/
  13.      GDCUR_X/$8B/$CF/$D1/$EF/$D1/$EF/$D1/$EF/$BA/$03CE/$8A/$26/GDMERGE/$B0/$03/
  14.      $EF/$B8/$0205/$EF/$B0/$08/$EE/$42/$B0/$80/$80/$E1/$07/$D2/$C8/$8B/$4E/$04/
  15.      $C5/$76/$06/$EE/$8A/$24/$46/$26/$8A/$3D/$26/$88/$25/$D0/$C8/$83/$D7/$00/
  16.      $E2/$EF/$B0/$FF/$EE/$4A/$B8/>$05/$EF/$B8/>$03/$EF/$1F);
  17. end;
  18.